home *** CD-ROM | disk | FTP | other *** search
- on mouseWithin
- global theselected
- if theselected = 3 then
- sprite(82).visible = 1
- end if
- end
-
- on mouseEnter
- global theselected
- sprite(77).visible = 0
- if theselected <> 3 then
- sprite(82).visible = 0
- end if
- end
-
- on mouseLeave
- global theselected
- if theselected = 3 then
- sprite(82).visible = 1
- else
- sprite(77).visible = 1
- sprite(82).visible = 0
- end if
- end
-
- on mouseUp me
- global thetext, theimage, theselected, thecredit
- set the memberNum of sprite 87 to theimage + 2
- set the memberNum of sprite 86 to thetext + 2
- set the memberNum of sprite 194 to thecredit + 2
- theselected = 3
- repeat with X = 0 to 4
- sprite(75 + X).visible = 1
- sprite(80 + X).visible = 0
- end repeat
- end
-